home *** CD-ROM | disk | FTP | other *** search
/ Collection of Tools & Utilities / Collection of Tools and Utilities.iso / batchut / batutl2.zip / CHKDATE.DOC < prev    next >
Text File  |  1985-07-03  |  821b  |  22 lines

  1.                 CHKDATE.COM  - by Guy C. Gordon
  2.  
  3.      The purpose of CHKDATE is to encourage other people to enter the
  4. current date when they boot your computer.  Unless you have a battery 
  5. backed up clock/calendar, DOS thinks the date is 1/1/80 when you boot, 
  6. and puts that date on all new files.  This makes it impossible to tell 
  7. which files are the newest.
  8.  
  9.      CHKDATE is a program that sets the DOS ERRORLEVEL if the date is 
  10. 1/1/80.  It may be used in an AUTOEXEC.BAT file to insure that the 
  11. current date is entered at the DATE command.  Using the batch commands 
  12. below, processing will loop back to the DATE command if the user does 
  13. not enter a date.  Of course, they could CTRL-BREAK out of the loop, 
  14. but don't tell them that.
  15.  
  16.  
  17. :GETDATE
  18. DATE
  19. CHKDATE
  20. IF ERRORLEVEL 1 GOTO GETDATE
  21. TIME
  22.